home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Games
/
Pentominoes 2.0
/
Pent code
/
pent main window.h
< prev
next >
Wrap
Text File
|
1995-07-23
|
863b
|
27 lines
#ifndef __PENT_MAIN_WINDOW_H__
#define __PENT_MAIN_WINDOW_H__
#ifdef __cplusplus
extern "C" {
#endif
extern void SetupTheMainWindow(WindowRef theWindow);
extern void OpenTheMainWindow(WindowRef theWindow);
extern Boolean CloseTheMainWindow(WindowRef theWindow);
extern void DisposeTheMainWindow(WindowRef theWindow);
extern void ActivateTheMainWindow(void);
extern void DeactivateTheMainWindow(void);
extern void KeyPressedInMainWindow(WindowRef theWindow, unsigned char theChar);
extern void MouseClickedInMainWindow(WindowRef theWindow, Point mouseLoc);
extern void MouseUpInMainWindow(void);
extern void DrawTheMainWindow(WindowRef theWindow, short theDepth);
extern void UndoInMainWindow(WindowRef theWindow);
extern void SetNewMainWindowTitle(Str31 titleStr);
extern void DealWithChangedPieceSize(WindowRef theWindow);
#ifdef __cplusplus
}
#endif
#endif